query 2 - ترجمة إلى إسباني
Diclib.com
قاموس ChatGPT
أدخل كلمة أو عبارة بأي لغة 👆
اللغة:

ترجمة وتحليل الكلمات عن طريق الذكاء الاصطناعي ChatGPT

في هذه الصفحة يمكنك الحصول على تحليل مفصل لكلمة أو عبارة باستخدام أفضل تقنيات الذكاء الاصطناعي المتوفرة اليوم:

  • كيف يتم استخدام الكلمة في اللغة
  • تردد الكلمة
  • ما إذا كانت الكلمة تستخدم في كثير من الأحيان في اللغة المنطوقة أو المكتوبة
  • خيارات الترجمة إلى الروسية أو الإسبانية، على التوالي
  • أمثلة على استخدام الكلمة (عدة عبارات مع الترجمة)
  • أصل الكلمة

query 2 - ترجمة إلى إسباني

FEATURE TO EFFICIENTLY EXECUTE QUERIES EFFICIENTLY IN DBMS SOFTWARES
Query optimizer; Cost-based query optimizer; Query optimisation; Query planner

query language         
COMPUTER LANGUAGE USED TO MAKE QUERIES INTO DATABASES AND INFORMATION SYSTEMS SUCH AS SQL OR XQUERY
Database query language; Information retrieval query language; Query languages; Query structure; Relational database querying; List of query languages; List of data query languages; List of database query languages
Lenguaje de interrogación (lenguaje que es utilizado para el almacenamiento de datos en el computador)
query language         
COMPUTER LANGUAGE USED TO MAKE QUERIES INTO DATABASES AND INFORMATION SYSTEMS SUCH AS SQL OR XQUERY
Database query language; Information retrieval query language; Query languages; Query structure; Relational database querying; List of query languages; List of data query languages; List of database query languages
(n.) = lenguaje de consulta, lenguaje de interrogación
Ex: Some DBMS systems have "query language" auxiliary systems which make them more amenable to a non-programmer.
two         
  • Two schoolboys in [[Chittagong]], [[Bangladesh]]
NATURAL NUMBER
Number 2; Two-ness; 2 (the number); Two; Secondly; ₂; ٢; ۲; Even prime; Numero dos; 2; Oddest prime; Two (number); Square root of 4; ២; ➋; ➁; ❷; The number 2; 2^1; The 2; 𐡙; ꩒; ༢; TWO; ௨; २; ২; ੨; ૨; ୨; ౨; ೨; ൨; ߂; ໒; ၂; ႒; ꧒; ᥈; 𐒢; ꣒; 2 (glyph); (II); Brace (hunting); 2 (number); 2️⃣; ASCII 50; \x32; U+0032; Smallest known prime number; Draft:Two; 2¹; 2**1; 1B1; 1 B1
dos
two time: traicionar
poner los cuernos
engañar

تعريف

acroleína
sust. fem.
Líquido volátil, sofocante que procede de la descomposición de la glicerina y que se emplea para la obtención de distintas materias industriales, especialmente plásticos.

ويكيبيديا

Query optimization

Query optimization is a feature of many relational database management systems and other databases such as NoSQL and graph databases. The query optimizer attempts to determine the most efficient way to execute a given query by considering the possible query plans.

Generally, the query optimizer cannot be accessed directly by users: once queries are submitted to the database server, and parsed by the parser, they are then passed to the query optimizer where optimization occurs. However, some database engines allow guiding the query optimizer with hints.

A query is a request for information from a database. It can be as simple as "find the address of a person with Social Security number 123-45-6789," or more complex like "find the average salary of all the employed married men in California between the ages 30 to 39 who earn less than their spouses." The result of a query is generated by processing the rows in a database in a way that yields the requested information. Since database structures are complex, in most cases, and especially for not-very-simple queries, the needed data for a query can be collected from a database by accessing it in different ways, through different data-structures, and in different orders. Each different way typically requires different processing time. Processing times of the same query may have large variance, from a fraction of a second to hours, depending on the chosen method. The purpose of query optimization, which is an automated process, is to find the way to process a given query in minimum time. The large possible variance in time justifies performing query optimization, though finding the exact optimal query plan, among all possibilities, is typically very complex, time-consuming by itself, may be too costly, and often practically impossible. Thus query optimization typically tries to approximate the optimum by comparing several common-sense alternatives to provide in a reasonable time a "good enough" plan which typically does not deviate much from the best possible result.